home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************************
-
- NeoTextBox.h - include file for NeoTextBox
-
- Written by Bryan K. Ressler (Beaker)
-
- *****************************************************************************************/
-
- /** DEFINES *****************************************************************************/
- #define ntbJustFull 128 /* Full justification */
- #define kReturnChar 0x0d /* Carriage return character */
-
- /** MACROS ******************************************************************************/
- #define MAXOF(a,b) (((a) > (b)) ? (a) : (b))
-
- /** PUBLIC PROTOTYPES *******************************************************************/
- short NeoTextBox(unsigned char *theText, unsigned long textLen, Rect *box,
- short just, short htCode, short *endY, short *lhUsed);
-